home *** CD-ROM | disk | FTP | other *** search
/ IRIS Performer 2.2 Friends Demo / SGI IRIS Performer 2.2 Friends Demo.iso / friends / i3dm / CopyMe next >
Text File  |  1997-11-19  |  640b  |  18 lines

  1. #!/bin/csh
  2. echo "NOTE: it is possible to install also with inst -f inst/i3dm"
  3. set DIR = i3dm
  4. mkdir -p /usr/share/Performer/friends/$DIR >& /dev/null
  5. if (-e  /usr/share/Performer/friends/$DIR) then
  6. touch /usr/share/Performer/friends/$DIR/testfile 
  7. if (-f /usr/share/Performer/friends/$DIR/testfile) then
  8. rm -f /usr/share/Performer/friends/$DIR/testfile
  9. tar cf - . | (cd /usr/share/Performer/friends/$DIR; tar xLf -)
  10. #restore writing rights on HD
  11. chmod -R +w /usr/share/Performer/friends/$DIR
  12. else
  13. echo Error: cannot create files in /usr/share/Performer/friends/$DIR
  14. end
  15. else
  16. echo Error: cannot create /usr/share/Performer/friends/$DIR
  17. endif
  18.